home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: Parent Power / The Sunday Times - Parent Power.iso / pc / engine / feature1.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2005-11-03  |  425 b   |  25 lines

  1. function backToMenu()
  2. {
  3.    _parent.movie_load("features.swf");
  4. }
  5. function showPage(nmPageNum)
  6. {
  7.    var _loc2_ = nmPageNum;
  8.    var _loc1_ = undefined;
  9.    if(_loc2_ == "prev")
  10.    {
  11.       _loc1_ = _currentframe - 1;
  12.    }
  13.    else if(_loc2_ == "next")
  14.    {
  15.       _loc1_ = _currentframe + 1;
  16.    }
  17.    else
  18.    {
  19.       _loc1_ = _loc2_;
  20.    }
  21.    mcNav.gotoAndStop(_loc1_);
  22.    this.gotoAndStop(_loc1_);
  23. }
  24. stop();
  25.